home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 356 / defs / bytesop.def < prev    next >
Text File  |  1992-03-11  |  1KB  |  40 lines

  1. DEFINITION MODULE BytesOp;
  2. (*    File name: BytesOp.def                    *)
  3. (*    Creation : July 10,1985                    *)
  4. (*    Function : Provid bytes operation for Modula-2/68       *)
  5. (*    By     : Morris                    *)
  6. (*                                *)
  7. (*
  8. *    Copyright (c) 1985, 1986 by
  9. *    Djavaheri Bros., Foster City, California.
  10. *    All Rights Reserved.
  11. *
  12. *    This software is furnished under a license and may be used and copied
  13. *    only  in accordance with  the  terms  of  such  license and  with the
  14. *    inclusion of the above copyright notice.  This software or  any other
  15. *    copies thereof may not be provided or otherwise made available to any
  16. *    other  person.   No title to and ownership of the  software is  herby
  17. *    transferred.
  18. *
  19. *    The information in this software is  subject to change without notice
  20. *    and  should  not be construed as a commitment by Djavaheri Bros.   No
  21. *    warranty is implied or expressed.
  22. *
  23. *      SCCID  = "1.1    1/26/86"; 
  24. *)
  25. (*    History of modifcation                    *)
  26. (*    Date        Who        Why            *)
  27. (*                                *)
  28.  
  29. FROM SYSTEM IMPORT ADDRESS;
  30. EXPORT QUALIFIED MoveBytes,MoveShort;
  31.  
  32. PROCEDURE MoveBytes (FromBuffer , TOBuffer: ADDRESS;
  33.                                 n:CARDINAL );
  34.  
  35. PROCEDURE MoveShort (FromBuffer , TOBuffer: ADDRESS;
  36.                                 n:CARDINAL );
  37.  
  38.  
  39. END BytesOp.
  40.